itemRect
Type
property
Summary
Gets the rect of a list item.
Syntax
get the itemRect of widget
Description
Use the itemRect property to Gets the rect of a list item. The itemPointer property determines of which item are you getting the rect.
Examples
on mouseUp pButtonNumber
local tItemRect
set the itemPointer of widget"PolyList" to 1
put the itemRect of widget"PolyList" into tItemRect
set the rec of graphic "itemRectDelimiter" to tItemRect
end mouseUp